home *** CD-ROM | disk | FTP | other *** search
- ;=========================================================================
- ; Siege!
- ; for Windows
- ; Written by Edward E. Dellow
- ; Copyright (c) 1993, Strategic Solutions
- ;
- ; _______
- ; ____|__ | (R)
- ; --| | |-------------------
- ; | ____|__ | Association of
- ; | | |_| Shareware
- ; |__| o | Professionals
- ; -----| | |---------------------
- ; |___|___| MEMBER
- ;
- ;=========================================================================
- ;
- ; To install Siege! for Windows
- ;
- ; 1) Start windows
- ; 2) From the Program manager Select FILE\RUN
- ; 3) Run the program INSTALL.EXE in this directory\disk
- ; 4) Answer the questions asked by the install program
- ;------------------------------------------------------------------------
- ;
- ; Install script for Siege! for Windows
- ;
- ; Edward E. Dellow 4/25/93
- ;
- ; Copyright (c) Strategic Solutions
- ;
- ;------------------------------------------------------------------------
-
- Title Install Siege! for Windows Evaluation
- Icon1 icon.exe
- Icon2 icon.exe
-
- ; Default paths
-
- Set INSTPATH=c:\ss\winsiege
- Set WINPATH=c:\windows
-
- ; Get the path where the product should be put
-
- cls
- Echo
- Echo Siege! for Windows Version 1.1
- Echo Evaluation version
- Echo Installation
- Echo Copyright(c) 1993 Strategic Solutions
- Echo Written by Edward E. Dellow
-
- Status You are about to install Siege! for Windows on you Hard drive. Enter the pathname where you would like it to be installed.
-
- :GetPath
- Ask INSTPATH
- FullPath INSTPATH=%%INSTPATH%%
- OnError MkDir_Error
- Mkdir %%INSTPATH%%
-
- ; Get the path where windows can be found
-
- :GetWinPath
- OnError Install_Error
- Status Enter the path name containing Microsoft Windows.
- Ask WINPATH
-
- OnError Install_Error
-
- ;--------------------
- ; Begin installation
- ;--------------------
-
- Cls
- Echo Installing Siege! for Windows.
- Echo Install Dir = '%%INSTPATH%%'
- Echo Windows Dir = '%%WINPATH%%'
- Echo
- Echo One moment please...
-
- AddGroup Stategic Solutions
- LZCopy wseval.ex_ %%INSTPATH%%
- LZCopy winsiege.hl_ %%INSTPATH%%
- Copy winsiege.txt %%INSTPATH%%
- Copy orderfrm.txt %%INSTPATH%%
- Copy baron.plc %%INSTPATH%%
- Copy killer.plc %%INSTPATH%%
- Copy squire.plc %%INSTPATH%%
- Copy super.plc %%INSTPATH%%
- Copy me.plc %%INSTPATH%%
- LZCopy bwcc.dl_ %%WINPATH%%\system
- ReplaceItem %%INSTPATH%%\wseval.exe,Siege! for Windows
- Status
- Message Installation complete!
- ShowGroup Stategic Solutions,3
- Goto End
-
- :MkDir_Error
- Status The path specified is invalid! Please enter a valid Directory for installation.
- Goto GetPath
-
- :Install_Error
- cls
- Echo
- Echo An error has occurred.
- Echo Please read the error message below.
- Pause
-
- :End
-